home *** CD-ROM | disk | FTP | other *** search
/ Clickx 115 / Clickx 115.iso / software / tools / windows / tails-i386-0.16.iso / live / filesystem.squashfs / var / lib / dpkg / info / mutt.postinst < prev    next >
Encoding:
Text File  |  2011-12-19  |  470 b   |  22 lines

  1. #!/bin/sh
  2.  
  3. set -e
  4.  
  5. if [ "$1" = "configure" ] ; then
  6.     update-alternatives --install /usr/bin/mutt mutt /usr/bin/mutt-org 50
  7. fi
  8.  
  9. # Automatically added by dh_installmenu
  10. if [ "$1" = "configure" ] && [ -x "`which update-menus 2>/dev/null`" ]; then
  11.     update-menus
  12. fi
  13. # End automatically added section
  14. # Automatically added by dh_installmime
  15. if [ "$1" = "configure" ] && [ -x "`which update-mime 2>/dev/null`" ]; then
  16.     update-mime
  17. fi
  18. # End automatically added section
  19.  
  20.  
  21. exit 0
  22.